home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-10-25 | 642 b | 29 lines | [TEXT/MPS ] |
- {IconEdit.p}
- {copyright © 1989 by Apple Computer, Inc. All rights reserved.}
-
- PROGRAM IconEdit;
-
-
- USES
- UMacApp;
-
-
- CONST kFileType = 'IDOC';
- kSignature = 'ICED';
-
-
- VAR
- gIconApplication: TApplication;
-
-
- BEGIN
- InitToolBox; { Essential toolbox and utilities initialization }
- InitUMacApp(8); { Initialize MacApp with 8 calls to MoreMasters. }
-
- New(gIconApplication); { Create a new TIconEditApplication object. }
- FailNIL(gIconApplication); { Make sure New didn't fail. }
- gIconApplication.IApplication(kFileType);
-
- gIconApplication.Run; { Run the application. When it's done, exit. }
- END.
-